home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / DTS.Lib / DTS.Lib.headers / AEUtils.h next >
Encoding:
C/C++ Source or Header  |  1992-10-22  |  701 b   |  31 lines  |  [TEXT/MPS ]

  1. #ifndef __AEUTILS__
  2. #define __AEUTILS__
  3.  
  4. #ifndef __TYPES__
  5. #include <Types.h>
  6. #endif
  7.  
  8. #ifndef __APPLEEVENTS__
  9. #include <AppleEvents.h>
  10. #endif
  11.  
  12. #ifndef __EVENTS__
  13. #include <Events.h>
  14. #endif
  15.  
  16. #ifndef __WINDOWS__
  17. #include <Windows.h>
  18. #endif
  19.  
  20. void            DoHighLevelEvent(EventRecord *event);
  21. OSErr            GetTargetInfo(AEAddressDesc targetDesc, StringPtr zone, StringPtr machine,
  22.                               StringPtr application);
  23. OSErr            MakeTarget(AEAddressDesc *target, Boolean sendDirect, short replyMode, Str255 prompt,
  24.                            Str255 applListLabel, PPCFilterProcPtr portFilter, char *theLocNBPType);
  25. Boolean            MissedAnyParameters(AppleEvent *message);
  26. void            NotifyCancel(void);
  27. void            NotifyUser(void);
  28.  
  29. #endif __AEUTILS__
  30.  
  31.